www.gusucode.com > PHP展示型企业网站模板米拓整站源码 1.0PHP源码程序 > PHP展示型企业网站模板米拓整站源码 1.0/MetInfozs_v1.0/MetInfozs_v1.0/app/system/web/user/class/weibo.class.php

    <?php
# MetInfo Enterprise Content Management System 
# Copyright (C) MetInfo Co.,Ltd (http://www.metinfo.cn). All rights reserved. 

defined('IN_MET') or exit('No permission');

load::mod_class('user/class/other');

class weibo extends other {

	public function __construct() {
		global $_M;
		if(!$_M['config']['met_weibo_open']){
			okinfo($_M['url']['login'], '微信登录功能已关闭');
		}
		$this->appid = $_M['config']['met_weibo_appkey'];
		$this->appkey = $_M['config']['met_weibo_appsecret'];
		$this->table = $_M['table']['user_other'];
		$this->type = 'weibo';
	}	
	
	public function get_login_url(){
		global $_M;
		$redirect_uri = $_M['url']['site'].'member/login.php?a=doother_login&type=weibo';
		$url .= "https://api.weibo.com/oauth2/authorize?";
		$url .= "client_id={$this->appid}";
		$url .= "&redirect_uri=".urlencode($redirect_uri);
		$url .= "&response_type=code";
		$url .= "&state=".$this->get_state();			
		return $url;
	}
	
	public function get_access_token_by_curl($code){
		global $_M;		
		$redirect_uri = $_M['url']['site'].'member/login.php?a=doother_login&type=weibo';
		$url = "https://api.weibo.com/oauth2/access_token";
		$send['code'] = $code;
		$send['client_id'] = $this->appid;
		$send['client_secret'] = $this->appkey;
		$send['grant_type'] = 'authorization_code';
		$send['redirect_uri'] = $redirect_uri;

		$data = jsondecode(load::mod_class('user/class/curl_ssl', 'new')->curl_post($url, $send));
		$data['openid'] = $data['uid'];
		$data['unionid'] = $data['uid'];
		if($this->error_curl($data)){
			return false;
		}else{
			return $data;
		}		
	}
	
	public function get_info_by_curl($unionid){
		global $_M;
		$data = $this->get_other_user($unionid);
		$url = "https://api.weibo.com/2/users/show.json";
		$send['access_token'] = $data['access_token'];
		$send['uid'] = $data['openid'];
		$send['source'] = $this->appkey;
		$data = jsondecode(load::mod_class('user/class/curl_ssl', 'new')->curl_post($url, $send, 'get'));
		$data['username'] = $data['screen_name'];
		if($this->error_curl($data)){
			return false;
		}else{
			return $data;	
		}
	}
	
	public function error_curl($data){
		if($data['error']){
			$this->errorno = $data['error_description'] ? $data['error_description'] : $data['error'];
			return true;
		}else{
			return false;
		}
	}
}


# This program is an open source system, commercial use, please consciously to purchase commercial license.
# Copyright (C) MetInfo Co., Ltd. (http://www.metinfo.cn). All rights reserved.
?>